home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 5 / Windows 6-Pak (InfoMagic) (Disc 5) (1999).ISO / JAVA-Programming-Tools / JDEX.ZIP / jdex / setjde.bat < prev   
Encoding:
DOS Batch File  |  1998-04-29  |  946 b   |  28 lines

  1. ::
  2. ::    Part of JDEX - Java Development Environment using Explorer
  3. ::
  4. ::    Copyright (c) 1998, by J. Brian Coyle
  5. ::                           mailto:brianc@magicnet.net
  6. ::                           http://www.magicnet.net/~brianc
  7. ::
  8. ::    Refer to JDEX\copyright.txt for additional information.
  9. ::
  10. ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
  11. @echo off
  12. :: ---
  13. :: ---   SETJDE                        03/20/98
  14. :: ---     sets the Java Development Environment
  15. :: ---
  16. :: ---     Edit the value of JDK to set the path to the current release
  17. :: ---     Edit the values of 
  18. :: ---            JDEXPATH
  19. :: ---             PATH
  20. :: ---            CLASSPATH 
  21. :: ---         as necessary to set the necessary paths
  22. :: ---
  23. if NOT "%JDK%"=="" goto end
  24. set JDK=D:\jdk\1.1.5
  25. set JDEXPATH=D:\jdk\jdex
  26. set path=.;"%JDK%\bin";"%jdexpath%";%path%
  27. set CLASSPATH=.;"%JDK%\lib\classes.zip";"%JDK%\..\MyCode\Classes";"%JDK%\..\as400\jt400\lib\jt400.zip"
  28. :end